home *** CD-ROM | disk | FTP | other *** search
/ GFX Sensations 1 / Graphic Sensations - Volume 1.iso / tools / amiga / 3d_tools / rend10.lzh / REND1.0 / GraphicSubSystem / makefile < prev    next >
Encoding:
Makefile  |  1994-03-01  |  1.1 KB  |  50 lines

  1. #
  2. # smakefile for The Graphic SubSystem
  3. #
  4. # Modify CPU type to reflect your cpu and double click build.
  5. #
  6.  
  7. MATH          = MATH=68881
  8. CPU           = CPU=68040
  9. #DEBUG         = DEBUG=FULL
  10. OPTIMIZE    = OPTIMIZE OPTLOOP OPTTIME OPTSCHED
  11. PARAMETERS    = PARAMETERS=REGISTER
  12.  
  13. FLAGS = $(MATH) $(CPU) $(DEBUG) $(OPTIMIZE) $(PARAMETERS)
  14.  
  15. OBJS  = control.o displaymap.o viewperstrans.o raster.o \
  16.     rasterasm.o database.o transformation.o matrix.o display.o
  17.  
  18. graphics.lib: $(OBJS)
  19.    oml graphics.lib r $(OBJS)   
  20.  
  21. control.o: control.c /include/control.h
  22.    sc $(FLAGS) control.c
  23.   
  24. displaymap.o: displaymap.c /include/displaymap.h
  25.    sc $(FLAGS) displaymap.c
  26.   
  27. viewperstrans.o: viewperstrans.c /include/viewperstrans.h
  28.    sc $(FLAGS) viewperstrans.c
  29.  
  30. raster.o: raster.c /include/raster.h
  31.    sc $(FLAGS) raster.c
  32.  
  33. rasterasm.o: rasterasm.a
  34.    asm -m0 rasterasm.a
  35.    
  36. database.o: database.c /include/database.h
  37.    sc $(FLAGS) database.c
  38.  
  39. transformation.o: transformation.c /include/transformation.h
  40.    sc $(FLAGS) transformation.c
  41.  
  42. matrix.o: matrix.c /include/matrix.h
  43.    sc $(FLAGS) matrix.c
  44.  
  45. display.o: display.c /include/display.h
  46.   sc $(FLAGS) display.c
  47.  
  48.  
  49.  
  50.